2019-04-24
data folder contains all input data (and metadata) used in the analysis;doc folder contains the manuscript;figs directory contains figures generated by the analysis;output folder contains any type of intermediate or output files;reports folder contains RMarkdown files that document the analysis or report on results;# Absolute path ------------------------------ "C:/Users/zephi/Dropbox/R-crash-course/figs/cropped-rstudio.png" # Relative path ------------------------------ "figs/cropped-rstudio.png"
# Load data into R from excel
library(readxl)
df <- read_xlsx("data/fishing_effort.xlsx")
reprex.